home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 December / 2004-12 CHIP.iso / Internet / NVU 0.50 for Windows / nvu-0.50-win32-installer-full.exe / {app} / chrome / comm.jar / content / editor / MarkupCleaner.js < prev    next >
Encoding:
JavaScript  |  2004-04-30  |  6.9 KB  |  221 lines

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  3.  *
  4.  * The contents of this file are subject to the Mozilla Public License Version
  5.  * 1.1 (the "License"); you may not use this file except in compliance with
  6.  * the License. You may obtain a copy of the License at
  7.  * http://www.mozilla.org/MPL/
  8.  *
  9.  * Software distributed under the License is distributed on an "AS IS" basis,
  10.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  11.  * for the specific language governing rights and limitations under the
  12.  * License.
  13.  *
  14.  * The Original Code is Nvu.
  15.  *
  16.  * The Initial Developer of the Original Code is
  17.  * Lindows.com.
  18.  * Portions created by the Initial Developer are Copyright (C) 2004
  19.  * the Initial Developer. All Rights Reserved.
  20.  *
  21.  * Contributor(s):
  22.  *   Daniel Glazman (glazman@disruptive-innovations.com), on behalf of Lindows.com
  23.  *
  24.  * Alternatively, the contents of this file may be used under the terms of
  25.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  26.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  27.  * in which case the provisions of the GPL or the LGPL are applicable instead
  28.  * of those above. If you wish to allow use of your version of this file only
  29.  * under the terms of either the GPL or the LGPL, and not to allow others to
  30.  * use your version of this file under the terms of the MPL, indicate your
  31.  * decision by deleting the provisions above and replace them with the notice
  32.  * and other provisions required by the GPL or the LGPL. If you do not delete
  33.  * the provisions above, a recipient may use your version of this file under
  34.  * the terms of any one of the MPL, the GPL or the LGPL.
  35.  *
  36.  * ***** END LICENSE BLOCK ***** */
  37.  
  38. function Startup()
  39. {
  40.   gDialog.okButton        = document.documentElement.getButton("accept");
  41.   gDialog.okButton.setAttribute("label", "Clean up");
  42.  
  43.   gDialog.nestedListsCheckbox = document.getElementById("nestedListsCheckbox");
  44.   gDialog.trailinBRCheckbox   = document.getElementById("trailinBRCheckbox");
  45.   gDialog.emptyBlocksCheckbox = document.getElementById("emptyBlocksCheckbox");
  46.   gDialog.emptyCellsCheckbox  = document.getElementById("emptyCellsCheckbox");
  47.  
  48.   gDialog.nestedListsReport   = document.getElementById("nestedListsReport");
  49.   gDialog.trailinBRReport     = document.getElementById("trailinBRReport");
  50.   gDialog.emptyBlocksReport   = document.getElementById("emptyBlocksReport");
  51.   gDialog.emptyCellsReport    = document.getElementById("emptyCellsReport");
  52. }
  53.  
  54. function OnlyWhiteTextNodesStartingAtNode(node, acceptOneBR)
  55. {
  56.   var result = true;
  57.   var brOccurences = 0;
  58.   while (node && result)
  59.   {
  60.     if (node.nodeType != Node.TEXT_NODE)
  61.     {
  62.       if (acceptOneBR &&
  63.           node.nodeType == Node.ELEMENT_NODE &&
  64.           node.nodeName.toLowerCase() == "br")
  65.       {
  66.         brOccurences++;
  67.          if (brOccurences > 1)
  68.            result = false;
  69.       }
  70.       else
  71.         result = false;
  72.     }
  73.     else
  74.       result = RegExp( /^\s*$/ ).test(node.data);
  75.     node = node.nextSibling;
  76.   }
  77.   return result;
  78. }
  79.  
  80. function RunCleanup()
  81. {
  82.   ClearReport(gDialog.nestedListsReport, gDialog.nestedListsCheckbox);
  83.   ClearReport(gDialog.trailinBRReport,   gDialog.trailinBRCheckbox);
  84.   ClearReport(gDialog.emptyBlocksReport, gDialog.emptyBlocksCheckbox);
  85.   ClearReport(gDialog.emptyCellsReport,  gDialog.emptyCellsCheckbox);
  86.  
  87.   function acceptNode(node, nestedLists, trailingBR, emptyBLocks, emptyCells)
  88.   {
  89.     // TBD : useless test below
  90.     if (node.nodeType == Node.ELEMENT_NODE)
  91.     {
  92.       var tagName = node.nodeName.toLowerCase();
  93.       switch (tagName)
  94.       {
  95.         case "br":
  96.           if (gDialog.trailinBRCheckbox.checked &&
  97.               OnlyWhiteTextNodesStartingAtNode(node.nextSibling, false))
  98.             return NodeFilter.FILTER_ACCEPT;
  99.           break;
  100.  
  101.         case "ul":
  102.         case "ol":
  103.           if (gDialog.nestedListsCheckbox.checked)
  104.           {
  105.             var parentTagName = node.parentNode.nodeName.toLowerCase();
  106.             if (parentTagName == "ul" || parentTagName == "ol")
  107.               return NodeFilter.FILTER_ACCEPT;
  108.           }
  109.           break;
  110.  
  111.         case "p":
  112.         case "div":
  113.         case "h1":
  114.         case "h2":
  115.         case "h3":
  116.         case "h4":
  117.         case "h5":
  118.         case "h6":
  119.           if (gDialog.emptyBlocksCheckbox.checked &&
  120.               OnlyWhiteTextNodesStartingAtNode(node.firstChild, true))
  121.             return NodeFilter.FILTER_ACCEPT;
  122.           break;
  123.  
  124.         case "td":
  125.         case "th":
  126.           if (gDialog.emptyCellsCheckbox.checked &&
  127.               OnlyWhiteTextNodesStartingAtNode(node.firstChild, true))
  128.             return NodeFilter.FILTER_ACCEPT;
  129.           break;
  130.           
  131.       }
  132.     }
  133.     return NodeFilter.FILTER_SKIP;
  134.   }
  135.  
  136.   var theDocument = GetCurrentEditor().document;
  137.   var treeWalker = theDocument.createTreeWalker(theDocument.documentElement,
  138.                                                 NodeFilter.SHOW_ELEMENT,
  139.                                                 acceptNode,
  140.                                                 true);
  141.   if (treeWalker) {
  142.     var theNode = treeWalker.nextNode(), tmpNode;
  143.     var editor = GetCurrentEditor();
  144.     editor.beginTransaction();
  145.  
  146.     while (theNode) {
  147.       var tagName = theNode.nodeName.toLowerCase();
  148.       if (tagName == "ul" || tagName == "ol")
  149.       {
  150.         var liNode = theNode.previousSibling;
  151.         while (liNode && liNode.nodeName.toLowerCase() != "li")
  152.           liNode = liNode.previousSibling;
  153.  
  154.         tmpNode = treeWalker.nextNode();
  155.         if (liNode)
  156.         {
  157.           editor.deleteNode(theNode);
  158.           editor.insertNodeAfter(theNode, liNode, null);
  159.           IncreaseReport(gDialog.nestedListsReport);
  160.         }
  161.         theNode = tmpNode;
  162.       }
  163.  
  164.       else if (tagName == "br")
  165.       {
  166.         tmpNode = treeWalker.nextNode();
  167.         var parentTagName = theNode.parentNode.nodeName.toLowerCase();
  168.         if (parentTagName != "td" && parentTagName != "th")
  169.         {
  170.           editor.deleteNode(theNode)
  171.           IncreaseReport(gDialog.trailinBRReport);
  172.         }
  173.  
  174.         theNode = tmpNode;
  175.       }
  176.       
  177.       else if (tagName == "td" || tagName == "th")
  178.       {
  179.         if (theNode.hasAttribute("align") ||
  180.             theNode.hasAttribute("valign"))
  181.         {
  182.           editor.removeAttribute(theNode, "align");
  183.           editor.removeAttribute(theNode, "valign");
  184.           IncreaseReport(gDialog.emptyCellsReport);
  185.  
  186.         }
  187.         theNode = treeWalker.nextNode();
  188.       }
  189.  
  190.       else
  191.       {
  192.         tmpNode = treeWalker.nextNode();
  193.         editor.deleteNode(theNode)
  194.         IncreaseReport(gDialog.emptyBlocksReport);
  195.  
  196.         theNode = tmpNode;
  197.       }
  198.     }
  199.  
  200.     editor.endTransaction();
  201.   
  202.   }
  203.   return false;
  204. }
  205.  
  206. function IncreaseReport(report)
  207. {
  208.   var reportValue = Number(report.value) + 1;
  209.   report.value = reportValue;
  210. }
  211.  
  212. function ClearReport(report, checkbox)
  213. {
  214.   if (report)
  215.     if (checkbox && checkbox.checked)
  216.       report.setAttribute("value", "0");
  217.     else
  218.       report.setAttribute("value", " ");
  219. }
  220.  
  221.